chore(devcontainer): fix dockerfile broken yarn repo in base image#2065
Conversation
Greptile SummaryThis PR fixes the broken Yarn APT repository present in the Confidence Score: 5/5Safe to merge — the core fix is correct and all findings are minor style suggestions (P2). No P0 or P1 issues found. The broken-yarn-repo fix is straightforward and correct. The remaining comments are about dead ARG/package and a redundant pnpm install, none of which affect runtime correctness. No files require special attention. Important Files Changed
Flowchart%%{init: {'theme': 'neutral'}}%%
flowchart TD
A[VS Code opens devcontainer] --> B[Build Dockerfile\nfrom base java:1-21-bullseye]
B --> B1[rm broken yarn.list]
B1 --> B2[apt-get: wget, unzip, curl]
B2 --> B3[Install Gradle 8.11]
B3 --> B4[Install Android SDK\nplatform-36 / build-tools-36.0.0]
B4 --> C[Apply devcontainer features]
C --> C1[android-sdk feature\nplatform=36, build_tools=36.0.0]
C --> C2[node feature\nLTS + pnpm latest]
C1 --> D[postCreateCommand]
C2 --> D
D --> D1[npm i -g pnpm\n⚠ redundant — already installed by node feature]
D1 --> D2[pnpm run setup]
D2 --> E[Container ready]
Reviews (3): Last reviewed commit: "Update devcontainer.json" | Re-trigger Greptile |
Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com>
No description provided.